home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2 - Developers' Solutions
/
Delphi 2 Developers' Solutions.iso
/
dds
/
chap07
/
howto05
/
delphi10
/
inmemory
/
memdemo.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-09-10
|
195 b
|
14 lines
program Memdemo;
uses
Forms,
Memform in 'MEMFORM.PAS' {Form1},
Memtable in 'MEMTABLE.PAS';
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.